
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


body{
    background-color: rgb(53, 53, 53);
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}


h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4vh;
    color:white;
}

.loginForm {
    background-color: rgb(80, 80, 80);
    width: 70vh;
    margin-top: 20vh;
    border: 2px solid #000000;
    border-radius: 15px;
    padding: 30px;
    box-shadow: rgb(0, 91, 134) 0 0 10px 3px;
}

#loginButton {
    float: right;
}

#emailText {
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vh;
}

#passwordText {
    color:white;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vh;
}

.btn-info {
    background-color: rgb(0, 91, 134);
    border-color: rgb(0, 91, 134);
    height: 4vh;
    width: 5vw;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vh;
}

.btn-info:hover {
    background-color: rgb(0, 91, 134);
    border-color: rgb(0, 91, 134);
}

.logoImage {
    height: 11vh;
    width: 11vh;
    margin: 0 auto;
    display: block;
}


.error {
    background: #F2DEDE;
    color: rgb(173, 5, 5);
    padding: 10px;
    width: 95%;
    border-radius: 5px;
}